Product Code Database
Example Keywords: smartphones -super $97
barcode-scavenger
   » » Wiki: Memory Hierarchy
Tag Wiki 'Memory Hierarchy'.
Tag

In computer architecture, the memory hierarchy separates into a hierarchy based on response time. Since response time, complexity, and capacity are related, the levels may also be distinguished by their performance and controlling technologies. Memory hierarchy affects performance in computer architectural design, algorithm predictions, and lower level programming constructs involving locality of reference.

Designing for high performance requires considering the restrictions of the memory hierarchy, i.e. the size and capabilities of each component. Each of the various components can be viewed as part of a hierarchy of memories in which each member is typically smaller and faster than the next highest member of the hierarchy. To limit waiting by higher levels, a lower level will respond by filling a buffer and then signaling for activating the transfer.

There are four major storage levels.

(1986). 9780131635029, Prentice Hall. .
  • Internalprocessor registers and .
  • Mainthe system RAM and controller cards.
  • On-line mass storagesecondary storage.
  • Off-line bulk storagetertiary and off-line storage.
This is a general memory hierarchy structuring. Many other structures are useful. For example, a paging algorithm may be considered as a level for virtual memory when designing a computer architecture, and one can include a level of nearline storage between online and offline storage.


Properties of the technologies in the memory hierarchy
  • Adding complexity slows the memory hierarchy.
  • CMOx memory technology stretches the flash space in the memory hierarchy
  • One of the main ways to increase system performance is minimising how far down the memory hierarchy one has to go to manipulate data.
  • Latency and bandwidth are two metrics associated with caches. Neither of them is uniform, but is specific to a particular component of the memory hierarchy.
  • Predicting where in the memory hierarchy the data resides is difficult.
  • The location in the memory hierarchy dictates the time required for the prefetch to occur.


Examples
The number of levels in the memory hierarchy and the performance at each level has increased over time. The type of memory or storage components also change historically.

+Cache, memory, and external storage hierarchy of a 2020s computer system (AMD Zen 4)
All CPU-related conversion assumes a 4.0 GHz clock. Same for below. Full utilization of throughput is impossible on real workloads. Size is provided for each core.
Hardware prefetching is required for maximum throughput. Size and throughput are per-core. Code cache has the same size but is not manipulable as data.
Size and throughput are per-core.
Size is shared among 8 cores. Throughput is per-core.
()Size is shared among all cores. Latency depends on the memory clock and memory timings. In this case, a result from a pair of 32 GB DDR5 DIMMs set to 6000 MT/s via the factory EXPO profile is used.

Systems with multiple CPU sockets have an additional NUMA delay when a CPU tries to access memory under the control of another NUMA node.


(secondary)
Solid-state drive2 TB2000 MB/s0.2 msFigures for a M.2 SSD from 2017, the Samsung 960 Pro.
Hard disk drive18 TB500 MB/s4.16 msPer-drive figures for Exos 2X18 (ST18000NM0092), an enterprise-grade 3.5 inch SATA HDD.

()
Spun-down HDDs (MAID)Petabytes25 sPer-drive figures for Exos 2X18 (ST18000NM0092), from user manual entry for "start/stop times". In a typical MAID setup, hundreds of spun-down HDDs may be used for petabytes of storage.
Exabytes160 MB/sMinutes
Offline storageExabytesDepends on mediumDepends on human operation

Some CPUs include additional levels of cache between L3 and memory. For example, the Haswell microarchitecture includes an L4 cache of 128 MB on mobile units.

The lower levels of the hierarchyfrom mass storage downwardsare also known as . The formal distinction between online, nearline, and offline storage is:

  • Online storage is immediately available for I/O.
  • Nearline storage is not immediately available, but can be made online quickly without human intervention.
  • Offline storage is not immediately available, and requires some human intervention to bring online.

For example, always-on spinning disks are online, while spinning disks that spin down, such as massive arrays of idle disk (MAID), are nearline. Removable media such as tape cartridges that can be automatically loaded, as in a , are nearline, while cartridges that must be manually loaded are offline.


Programming
Most modern CPUs are so fast that, for most program workloads, the is the locality of reference of memory accesses and the efficiency of the and memory transfer between different levels of the hierarchy. As a result, the CPU spends much of its time idling, waiting for memory I/O to complete. This is sometimes called the space cost, as a larger memory object is more likely to overflow a small and fast level and require use of a larger, slower level. The resulting load on memory use is known as pressure (respectively register pressure, cache pressure, and (main) memory pressure). Terms for data being missing from a higher level and needing to be fetched from a lower level are, respectively: register spilling (due to register pressure: register to cache), (cache to main memory), and (hard) ( real main memory to virtual memory, i.e. mass storage, commonly referred to as disk regardless of the actual mass storage technology used).

Modern programming languages mainly assume two levels of memory, main ( working) memory and mass storage. The exception is the relatively low-level assembly language and in the of higher-level languages such as C where "prefetch" instructions can be used to preload the cache. Taking optimal advantage of the memory hierarchy requires the cooperation of programmers, hardware, and compilers (as well as underlying support from the operating system):

  • Programmers are responsible for moving data between disk and memory through file I/O.
  • Hardware is responsible for moving data between memory and caches.
  • Optimizing compilers are responsible for generating code that, when executed, will cause the hardware to use caches and registers efficiently.

Many programmers assume one level of memory. This works fine until the application hits a performance wall. At that point, the programmer needs to change the code's memory access patterns to that it works well with cache resources. A classic illustration of the effect of locality and caching is in the form of changing the order of iterating a three-dimensional array. Computer Systems: A Programmer's Perspective is a classic textbook that deals with this aspect of systems programming.


Memory tiering
Memory tiering is the practice of dividing the main memory into several levels by their performance characteristics, and (in analogy to storage tiering) moving memory content between them. What appears to be the "main memory" (physical address space) can be made up of heterogeneous parts due to NUMA, CXL-attached memory (on PCIe slots), DCPMMs, or memory found on other expansion hardware such as coprocessors and GPUs, hence the need for tiering. Swapping can also be considered a form of tiering.

Memory tiering is implemented on Linux as an extension to NUMA, where each memory provider has a CPU-less NUMA node with an appropriate "abstract distance" reflecting its performance. The existing scheme for migrating memory between NUMA nodes using "hotness" indicated by is adapted to tiering by Huang Ying (Al Maruf's TPP scheme is not in Linux mainline). It also uses a weighted-interleave allocation policy.


See also

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs